home *** CD-ROM | disk | FTP | other *** search
/ Wayzata's Best of Shareware for Macintosh / CD Line - Limited Edition Wayzata's Best of Shareware for Macintosh for MacWorld Exposition Milano 1994 (050594)(1994).iso / pc / utilitie / system_7 / hyperkey / key_stor.1 < prev   
Text File  |  1992-05-09  |  3KB  |  135 lines

  1.  
  2. On DoControlC
  3.  put the selectedchunk
  4. End DoControlC
  5.  
  6. On DoControlD
  7.  if the optionkey is down then type the short date
  8.   else type the long date
  9. End DoControlD
  10.  
  11. On DoControlF
  12.  put the selectedfield
  13. End DoControlF
  14.  
  15. On DoControlG
  16.  beep
  17. End DoControlG
  18.  
  19. On DoControlH
  20.  visual effect iris open slowly
  21.   go stack "Hyperkeys" in a new window
  22. End DoControlH
  23.  
  24. On DoControlL
  25.  -- Unlock/Lock card or background field below the cursor
  26.   repeat with x = the number of card fields down to 1
  27.     if the mouseloc is within the rect of cd fld x and the visible of cd fld x is true then
  28.       set the locktext of cd fld x to not the locktext of cd fld x
  29.       exit doControlL
  30.     end if
  31.   end repeat
  32.   repeat with x = the number of fields down to 1
  33.     if the mouseloc is within the rect of fld x and the visible of fld x is true then
  34.       set the locktext of fld x to not the locktext of fld x
  35.       exit doControlL
  36.     end if
  37.   end repeat
  38. End DoControlL
  39.  
  40. On DoControlM
  41. set cursor to cross
  42. repeat until the mouse is down
  43. put the mouseloc into temp
  44. put temp&&"to 0,0"
  45. end repeat
  46. repeat until the mouse is up
  47. put temp&&"to"&&the mouseloc
  48. end repeat
  49.  
  50. End DoControlM
  51.  
  52. On DoControlT
  53.  type the short time
  54. End DoControlT
  55.  
  56. On DoControlU
  57.  Set the userlevel to 5
  58. End DoControlU
  59.  
  60. On DoControlB
  61.  domenu "Battery"
  62. End DoControlB
  63.  
  64. On DoControlR
  65.  reset menubar
  66. End DoControlR
  67.  
  68. On DoControlSpace
  69.  set the visible of msg to not the visible of msg
  70. End DoControlSpace
  71.  
  72. On DoControlSlash
  73.  go stack "hypertalk reference" in a new window
  74. End DoControlSlash
  75.  
  76. On DoControlOne
  77.  Go first card
  78. End DoControlOne
  79.  
  80. On DoControlTwo
  81.  Go prev card
  82. End DoControlTwo
  83.  
  84. On DoControlThree
  85.  Go Next card
  86. End DoControlThree
  87.  
  88. On DoControlFour
  89.  Go Last card
  90. End DoControlFour
  91.  
  92. On DoControlA
  93.  go stack "Spinning Jenny:Desktop Folder:AppleEvent Monitor" in a new window
  94. End DoControlA
  95.  
  96. On DoControlV
  97.  if the visible of window "variable watcher" then hide window "variable watcher"
  98.   else show window "variable watcher"
  99. End DoControlV
  100.  
  101. On DoControlW
  102.  if the visible of window "message watcher" then hide window "message watcher"
  103.   else show window "message watcher"
  104. End DoControlW
  105.  
  106. On DoControlE
  107.  if the optionkey is down then
  108.     answer file "Export scripts of what stack?" of type "STAK"
  109.     if (it is empty) or (the result is "Cancel") then exit doControlE
  110.     put it into srcFile
  111.   else
  112.     put the long name of this stack into srcFile
  113.     delete word 1 of srcFile
  114.     delete char 1 of srcFile
  115.     delete last char of srcFile
  116.   end if
  117.   put lastHCItem(":",srcFile) && "Export" into destFileName
  118.   ask file "Save file as:" with destFileName
  119.   if (it is empty) or (the result is "Cancel") then exit DoControlE
  120.   put it into destFile
  121.   archiveScripts srcFile,destFile
  122. End DoControlE
  123.  
  124. On DoControlS
  125.  -- Show Clipboard contents if a PICT is on it
  126.   picture "The Clipboard",clipboard
  127.   if the result is not empty then
  128.     put the result into Res
  129.     put "Unable to display Clipboard." into temp
  130.     if last word of res is "-102." then put " The clipboard contents are not PICT." after temp
  131.     if last word of res is "memory." then put " Not enough memory to show contents." after temp
  132.     answer temp
  133.   end if
  134. End DoControlS
  135.